home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / xlmath10.zip / XLMATH.RC < prev    next >
Text File  |  1992-03-14  |  725b  |  25 lines

  1. // XLMATH.RC -- XLMATH Resource Files
  2. // Mathematics DLL for Excel 3.0
  3. // Written by Roy Kari
  4. // March 1992
  5.  
  6. // these *must* be kept in synch with XLM_ERROR in XLMATH.H
  7. #define XLM_NO_TASK 0
  8. #define XLM_NO_MEMORY 1
  9. #define XLM_MEMORY_ERROR 2
  10. #define XLM_NOT_SQUARE 3
  11. #define XLM_NULL_TASK 4
  12. #define XLM_SMEM_ERROR 5
  13. #define XLM_RMEM_ERROR 6
  14.  
  15. STRINGTABLE
  16. BEGIN
  17.     XLM_NO_TASK,"Invalid task. Cannot initiate XLMATH"
  18.     XLM_NO_MEMORY,"Out of memory"
  19.     XLM_MEMORY_ERROR,"Memory error"
  20.     XLM_NOT_SQUARE,"Symmetric matrix must be square"
  21.     XLM_NULL_TASK,"Unable to find active task. Call InitXLMath!"
  22.     XLM_SMEM_ERROR,"Internal memory error in ScratchPool"
  23.     XLM_RMEM_ERROR,"Internal memory error in ReturnPool"
  24. END
  25.